home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 February
/
PCWK0297.iso
/
lotus
/
english
/
lotus039.dsk
/
CONTACTS.MPR
/
SCRIPT
/
ApproachDoc
/
SmartMaster Info
/
Body
/
butMore.s
(
.txt
)
< prev
next >
Wrap
Null Bytes Alternating
|
1995-11-12
|
2KB
|
42 lines
'++LotusScript Development Environment:2:5:(Options):0:66
'++LotusScript Development Environment:2:5:(Forward):0:1
Declare Sub Click(Source As Button, X As Long, Y As Long, Flags As Long)
'++LotusScript Development Environment:2:5:(Declarations):0:2
'++LotusScript Development Environment:2:2:BindEvents:1:129
Private Sub BindEvents(Byval Objectname_ As String)
Static Source As BUTTON
Set Source = Bind(Objectname_)
On Event Click From Source Call Click
End Sub
'++LotusScript Development Environment:2:2:Click:1:12
Sub Click(Source As Button, X As Long, Y As Long, Flags As Long)
v=0
If source.parent.directionspanel.visible=True Then
v=1
End If
If source.parent.descriptionpanel.visible=True Then
v=2
End If
If v=0 Then
source.parent.directionspanel.visible=False
source.parent.structurepanel.visible=False
source.parent.descriptionpanel.visible=True
End If
If v=1 Then
source.parent.directionspanel.visible=False
source.parent.structurepanel.visible=True
source.parent.descriptionpanel.visible=False
End If
If v=2 Then
source.parent.directionspanel.visible=True
source.parent.structurepanel.visible=False
source.parent.descriptionpanel.visible=False
End If
'v=(v+1) Mod 3
End Sub